Cufflinks support plotly's offline mode.
This service from plotly requires special permissions.
For more information please see https://plot.ly/python/offline/
In [1]:
import cufflinks as cf
In [2]:
# You can go offline on demand by using
cf.go_offline()
In [3]:
# To go back to online mode you can use
cf.go_online()
You can also set permanently this setting (applies to all future notebooks)
In [4]:
cf.set_config_file(offline=True)
In [ ]:
cf.get_config_file()
In [6]:
# And you are all set!
cf.datagen.box(20).iplot(kind='box',legend=False)
cf.iplot
can also be used to plot a Figure.
online
can be used to make a execute the chart in the cloud
In [7]:
fig=cf.datagen.histogram(3).figure(kind='histogram')
cf.iplot(fig,online=True)
Out[7]:
In [ ]: